type runtime.mheap

24 uses

	runtime (current package)
		arena.go#L992: func (h *mheap) allocUserArenaChunk() *mspan {
		malloc.go#L650: func (h *mheap) sysAlloc(n uintptr, hintList **arenaHint, register bool) (v unsafe.Pointer, size uintptr) {
		malloc.go#L895: func (h *mheap) enableMetadataHugePages() {
		mgcsweep.go#L96: func (h *mheap) nextSpanForSweep() *mspan {
		mheap.go#L61: type mheap struct {
		mheap.go#L243: var mheap_ mheap
		mheap.go#L525: 	h := (*mheap)(vh)
		mheap.go#L746: func (h *mheap) init() {
		mheap.go#L784: func (h *mheap) reclaim(npage uintptr) {
		mheap.go#L864: func (h *mheap) reclaimChunk(arenas []arenaIdx, pageIdx, n uintptr) uintptr {
		mheap.go#L959: func (h *mheap) alloc(npages uintptr, spanclass spanClass) *mspan {
		mheap.go#L992: func (h *mheap) allocManual(npages uintptr, typ spanAllocType) *mspan {
		mheap.go#L1001: func (h *mheap) setSpans(base, npage uintptr, s *mspan) {
		mheap.go#L1025: func (h *mheap) allocNeedsZero(base, npage uintptr) (needZero bool) {
		mheap.go#L1090: func (h *mheap) tryAllocMSpan() *mspan {
		mheap.go#L1113: func (h *mheap) allocMSpanLocked() *mspan {
		mheap.go#L1145: func (h *mheap) freeMSpanLocked(s *mspan) {
		mheap.go#L1177: func (h *mheap) allocSpan(npages uintptr, typ spanAllocType, spanclass spanClass) (s *mspan) {
		mheap.go#L1390: func (h *mheap) initSpan(s *mspan, typ spanAllocType, spanclass spanClass, base, npages uintptr) {
		mheap.go#L1480: func (h *mheap) grow(npage uintptr) (uintptr, bool) {
		mheap.go#L1565: func (h *mheap) freeSpan(s *mspan) {
		mheap.go#L1605: func (h *mheap) freeManual(s *mspan, typ spanAllocType) {
		mheap.go#L1621: func (h *mheap) freeSpanLocked(s *mspan, typ spanAllocType) {
		mheap.go#L1683: func (h *mheap) scavengeAll() {